/* Normalize CSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container img {
  height: 50px;
}

/* Header styles */
header {
  background-color: rgb(231, 140, 4);
  color: #fff;
  padding: 20px;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.5em;
}

nav li {
  display: inline-block;
  margin-right: 20px;
}

nav a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #f7f7f7;
}

.Heading h2 {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  background-color: #333;
  padding: 30px;
}

.gallery-dog {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 10px;
  background-color: #333;
}

.image-container-dog {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.image-container-dog::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.image-container-dog img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container-dog:hover img {
  transform: scale(1.1);
}

.image-container-dog .label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px;
  font-size: 14px;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container-dog:hover .image-caption {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-dog {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

.gallery-cat {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 1px;
  background-color: #333;
}

.image-container-cat {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 1/1;
}

.image-container-cat img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container-cat:hover img {
  transform: scale(1.1);
}

.image-container-cat .label {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px;
  font-size: 14px;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container-cat:hover .image-caption {
  opacity: 1;
}

@media (max-width: 767px) {
  .gallery-cat {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}

/* Footer styles */
footer {
    background-color: rgb(231, 140, 4);
    color: #000000;
    padding: 50px;
  }
  
  .footer-text {
    font-weight: bold;
    padding-bottom: 30px;
  }
  
  .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-between;
  }
  
  .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
  }
  
  .footer-links a:hover {
    color: #000000;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  .footer-social li {
    margin-right: 10px;
  }
  
  .footer-social a {
    color: #000000;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    color: #000000;
  }
  
  .footer-text h3 {
    color: #000000;
    font-size: 2em;
  }